home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / VBASIC / DIALGJB2.ZIP / VENDINFO.DIZ < prev    next >
VENDINFO  |  1995-12-06  |  15KB  |  287 lines

  1. +-------------------------------------------────────-----────────----+
  2. | This VENDINFO Product Information File contains both readable text |
  3. | and tools-accessible data about a product.  See the last text      |
  4. | section, below, for more information about VENDINFO and its tools. |
  5. +--------------------------------------------------------------------+
  6. VENDINFO standard v1.04, produced by VendEdit v1.30, 18-Dec-1995
  7.  
  8. ===== Product Information ==============================
  9.    Product:             DialogJB Visual Basic code for Dialog Box
  10.    Version:             2.0
  11.    Version Date:        6-Dec-1995
  12.    Product Type:        Software
  13.    Basic Distribution Policy (see License, below, for details):
  14.       Freeware, copyrighted but freely distributable and useable
  15.  
  16.    Product Description: DIALOGJB v. 2.0 <ASP> Simple Visual Basic for
  17.                         Windows code which opens a Common Dialog box 
  18.                         like that which comes with the COMMDLG.DLL 
  19.                         and various VBX's. Gives you freedom to place
  20.                         it where you want on screen; add colors, 
  21.                         bitmaps, and other controls. Most 
  22.                         importantly, it takes up a lot less space and
  23.                         adds speed because it does not need any add-
  24.                         on DLL, OCX, or VBX files. Free. From James 
  25.                         Bair. 
  26.    Reason for version:  Modified to include direct API call to INI 
  27.                         files
  28.  
  29.    Category:            Computer programming; Languages; BASIC; 
  30.                         Visual BASIC
  31.    Keywords:            WINDOWS VISUAL BASIC VB VB3 COMMON DIALOG 
  32.                         FILE OPEN SAVE
  33.    Required Packages:   DIALGJB2
  34.    This Package:        DIALGJB2
  35.  
  36.    Required Configuration
  37.       Processor Family: Intel 80x86 (minimum 80286 (AT))
  38.       Minimum OS:       Windows 3.0
  39.       Standard RAM:     2048K
  40.       Hard Drive Space: 35K
  41.       Required:
  42.          Hard drive
  43.       Req'd Software:   Visual Basic for Windows
  44.  
  45.    Orders:
  46.       Address:          James Bair
  47.                         P.O. Box 203
  48.                         Shelton  CT  06484-0203
  49.                         USA
  50.       FAX:              203-452-1531
  51.       CompuServe:       70730,3001
  52.       Internet:         70730.3001@compuserve.com
  53.       Other E-mail:     jbair@csunet.ctstateu.edu
  54.  
  55.    Support:
  56.       Address:          James Bair
  57.                         P.O. Box 203
  58.                         Shelton  CT  06484-0203
  59.                         USA
  60.       FAX:              203-452-1531
  61.       CompuServe:       70730,3001
  62.       Internet:         70730.3001@compuserve.com
  63.       Other E-mail:     jbair@csunet.ctstateu.edu
  64.  
  65.  
  66. ===== Information for Users ("READ-ME") ================
  67.  
  68. DialogJB takes care of a programmer's problem--too many VBX's, DLL's, and
  69. OCX's cluttering up the program & taking up time to execute. DialogJB
  70. provides a File Open/Read/Save Windows Dialog Box using only Visual Basic
  71. Code.  Apply the code to your own Visual Basic for Windows programming.
  72. Because it is all Visual Basic form-level code, you can customize it
  73. however you want--center it, place it in whatever position you want,
  74. make it as big or as small as you want, add or remove commands, check
  75. boxes, add your own colors or bitmaps. It's yours!
  76.  
  77.  
  78. ===== Packing List =====================================
  79.  
  80. As released by the author or publisher, this package contained the
  81. following files in addition to this VENDINFO.DIZ:
  82.  
  83.         Filename      Size     Date       Time     CRC32
  84.       READ_ME.1ST      171   6-Dec-1995  02:00a   F9D97F00
  85.       FILE_ID.DIZ      412   6-Dec-1995  02:00a   902343C2
  86.      DIALOGJB.FRM    19825   6-Dec-1995  02:00a   C3D49641
  87.        DLGJB2.FRM    10550   6-Dec-1995  02:00a   0799CBC8
  88.       BBSINFO.TXT     2910   6-Dec-1995  02:00a   30145D01
  89.      DIALOGJB.TXT     3204   6-Dec-1995  02:00a   6C91B930
  90.        VENDOR.TXT     2883   6-Dec-1995  02:00a   BD1B1755
  91.  
  92.  
  93. ===== Installation =====================================
  94.  
  95. The file DIALOGJB.FRM is the form file for the Common Dialog Window. Add
  96. this to your Visual Basic project and customize as necessary.
  97.  
  98. The file DLGJB2.FRM contains other pieces of code: 1) The command used
  99. by the main form to open the DIALOGJB dialog box form. 2)Optional Global
  100. or Module commands to optimize your dialog box--includes color,
  101. 3-dimensional, centering, and INI file read/write functions and
  102. subroutines. Add these to your program and modules as needed.
  103.  
  104.  
  105. This took a number of hours to make, but it takes the place of the Common
  106. Dialog Box for opening, reading, or loading files.  With the use of the
  107. List Box controls, it can do everything the Common Dialog Box can in the
  108. "Open File" Action and with a little modification can do what the "Save
  109. File" Action would do.  You could also add a "Help" button to it and
  110. customize it in any way.  Unlike the Common Dialog Box that ships with
  111. Visual Basic, you can control where it appears on the screen, and you can
  112. control the color and appearance.  Add bitmaps, or whatever. As written,
  113. it presents a 3D gray form which has become popular for Windows
  114. applications including Win95.  Most importantly, it takes up a lot less
  115. space--no COMMDLG.DLL, CDIALOG.VBX, CMDIALOG.VBX, THREED.VBX, or other
  116. add-on file.
  117.  
  118. The form DIALOGJB.FRM is the form to add to your main program. This is
  119. the code for the Common Dialog Box.  The file DLGJB2.FRM is, strictly
  120. speaking, not a form to load, but is a text file with the routine for
  121. loading frmDialogJB from the Main form and three helpful but optional
  122. routines which may be used in a MODULEx.BAS.
  123.  
  124. DialogJB as written includes calls to an INI file.  This, of course,
  125. is optional depending on whether you need to read certain files or if
  126. you need an "initial directory" feature.  I have written it to use the
  127. INIDEMO code put out by Curtis Smith. (Many BBS's and similar services
  128. carry demos of it.)  There are other similar VBX's--or you may use other
  129. Windows API calls (if you can get the things to work).
  130.  
  131. This was written with Visual Basic for Windows 3.0, but I believe it
  132. works pretty much the same with earlier versions.
  133.  
  134. If you want to see how this is used, check out the shareware utility
  135. WinAlter by the author.
  136.  
  137. Enjoy.
  138.  
  139.  
  140. ===== Warranty =========================================
  141.  
  142. LIMITED WARRANTY
  143.  
  144. THIS SOFTWARE AND MANUAL ARE PROVIDED FOR EVALUATION ONLY, ON AN "AS
  145. IS" BASIS.  THE AUTHOR DISCLAIMS ALL WARRANTIES RELATING
  146. TO THIS SOFTWARE, WHETHER EXPRESSED  OR IMPLIED, INCLUDING BUT NOT
  147. LIMITED TO ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR
  148. A PARTICULAR PURPOSE. NEITHER THE AUTHOR NOR ANYONE ELSE
  149. WHO HAS BEEN INVOLVED IN THE CREATION, PRODUCTION, OR DELIVERY OF
  150. THIS SOFTWARE SHALL BE LIABLE FOR ANY INDIRECT, CONSEQUENTIAL, OR
  151. INCIDENTAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE SUCH
  152. SOFTWARE, EVEN IF THE AUTHOR HAS BEEN ADVISED OF THE
  153. POSSIBILITY OF SUCH DAMAGES OR CLAIMS.  THE PERSON USING THE SOFTWARE
  154. BEARS ALL RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE.
  155. (Hey, it's code & it's free!)
  156.  
  157. This agreement shall be governed by the laws of the State of Connecticut
  158. and shall inure to the benefit of the author and any
  159. successors, administrators, heirs and assigns. Any action or proceeding
  160. brought by either party against the other arising out of or related to
  161. this agreement shall be brought only in a STATE or FEDERAL COURT of
  162. competent jurisdiction located in New haven County, Connecticut. The
  163. parties hereby consent to in personam jurisdiction of said courts.
  164.  
  165.  
  166.  
  167. ===== License for Use and Distribution =================
  168.  
  169. TRIAL USE LICENSE
  170.  
  171. DIALOGJB is NOT a public domain program.  It is copyrighted by
  172. James Bair.  This software and accompanying documentation are
  173. protected by United States copyright law and also by international
  174. treaty provisions.
  175.  
  176. You may not use, copy, rent, lease, sell, modify, decompile,
  177. disassemble, otherwise reverse engineer, or transfer the licensed
  178. program except as provided in this agreement.  Any such unauthorized
  179. use shall result in immediate and automatic termination of this license.
  180. All rights not expressly granted here are reserved to the author.
  181.  
  182.  
  183. LIMITED DISTRIBUTION LICENSE
  184.  
  185. The following may distribute DIALOGJB, completely unaltered, without
  186. further permission: those who meet requirements in VENDOR.TXT file; for
  187. other cases or to distribute in modified form, you must consult the
  188. attached data record, which is hereby incorporated by reference.  Any
  189. distribution satisfying all the distribution requirements expressed in
  190. that data record is hereby authorized.
  191.  
  192. Permission to distribute the DIALOGJB package is not transferable,
  193. assignable, saleable, or franchisable.  Each vendor wishing to
  194. distribute the package must independently satisfy the terms of this
  195. limited distribution license.
  196.  
  197. U.S. Government Information:  Use, duplication, or disclosure by the
  198. U.S. Government of the computer software and documentation in this
  199. package shall be subject to the restricted rights applicable to
  200. commercial computer software as set forth in subdivision (b)(3)(ii) of
  201. the Rights in Technical Data and Computer Software clause at
  202. 252.227-7013 (DFARS 52.227-7013).  The Contractor/manufacturer is
  203. James Bair, P.O. Box 203, Shelton  CT  06484-0203.
  204.  
  205. The author may revoke any permissions granted here, by
  206. notifying you in writing.  All rights not expressly granted here are
  207. reserved to the author.
  208.  
  209. Contents of VENDOR.TXT file:
  210.  
  211. This file contains our distribution policy and information on all our
  212. products. We have a simple distribution policy: You have permission to
  213. distribute our shareware or freeware in its original, unaltered form as
  214. long as you 1) Identify it as shareware (with an appropriate definition)
  215. 2) Leave all intellectual property and copyright notices in place ....and
  216. as long as we do not request you to stop.
  217.  
  218. You may archive our programs, unarchive them, include/exclude optional
  219. files (like this VENDOR.TXT file), include them with other programs on
  220. the same diskette, and do essentially anything you want as long as you
  221. respect the integrity of the program and all copyright laws, even if you
  222. may not be subject to them.  We want the widest possible distribution,
  223. and we do notwant to stand in your way so long as you are honest with our
  224. mutual customer.
  225.  
  226. If you are distributing in vending rack or point-of-purchase sales,
  227. please request our permission.  This is the only area which it seems that
  228. customers do not understand shareware.  ASP, ESC, Walnut Creek, Simtel,
  229. Garbo, Winsite, SICS, PC-SIG, Washington State, STAR, Way Cool, Bongo,
  230. EMS, APCUG, PC-related periodical, and Night Owl collections are
  231. pre-authorized to include our programs on CD-ROM.
  232.  
  233. This is our normal distribution sequence:
  234.  
  235. 1. New versions are posted on CompuServe (use IBMFF with ID 70730,3001).
  236.  
  237. 2. New versions are released through SDNet. If you have a BBS and
  238.    do not belong to SDNet, please consider joining this international
  239.    network.
  240.  
  241. 3. All ASP and ESC distribution members are included in the regular ASP
  242.    and ESC CD-ROM. This saves us both time and money.  If you are not an
  243.    ASP vendor member or bulletin board member, please consider joining.
  244.    If you work a lot with educational materials, consider joining the ESC
  245.    (Educational Software Cooperative).
  246.  
  247. 4. Since most Shareware vendors do not handle programming aids, we do
  248.    not as a rule distribute programming aids otherwise. However, if you
  249.    would like to be informed of updates of programming aids, please let
  250.    the author know. We will try to upload them to Internet FTP sites that
  251.    handle programming aids, so you may want to check with such sites or
  252.    with the Archie file finding service.
  253.  
  254. If you have any questions, concerns, or complaints, please contact me:
  255.         James Bair
  256.         P.O. Box 203
  257.         Shelton  CT  06484-0203
  258.         USA
  259.         CIS 70730,3001
  260.         Internet 70730.3001@compuserve.com
  261.         Voice 203-734-1296 (5-9 p.m. Eastern Time Zone)
  262.  
  263. Outside of USA: If you are interested in working with us to provide
  264. registration and support services outside the USA, we are interested in
  265. working with you in a nonexclusive basis.
  266.  
  267.  
  268. ===== About VENDINFO Files =============================
  269.  
  270. Each VENDINFO.DIZ file contains extensive information about a product.
  271. This "human-readable" section is followed by a compressed data record
  272. useable by automated tools.  The data record allows BBSes and other
  273. distributors to automate package handling, and provides users with a
  274. wealth of product information.  VENDINFO tools (free viewer for users,
  275. free or inexpensive processors for distributors, editors for authors)
  276. are available from many BBSes, disk vendors, and other sources.
  277.  
  278.  
  279. ===== Compressed Data Record Follows ===================
  280.  
  281. PK
  282. ╣Ƶ⌠├ba£#    VENDDATA.p        )            ^>.    &I    V'    >        4«~    >            .    Ä    ▐    n    ■.╧┐ƒO%%    &&.n.> W≈≈≈Qs2sδÖ┘╡äë┬╤z&tX!ƒg╚ë>a£gáéò░£Dτ⌠1\@C    X≈╠]÷∙FÄ¥╧:╣ ▌> ⁿ}X╢┐▌⌡²┤;~╛σ╧┐ífïÅ╞yå+╓]ù┤σ¡┐┐Ö╢╣√u▀╓ éÿ⌡┐φ≤Ls⌡╠·O[µ78⌐_rδYqbτƒë%f!fì≈├)0H■╥W÷2δ0╡8h!¥ W±
  283. _  Tc±G╡N 3ûΘτyço■Θ}╝▒\┬∙f-ùò╩¥$¡6σ?ôr²└ùò⌡º≈╓╖¡╢╔ù* êwY$P3~n■¡6·»7y°EªHV S¬²-,▌╟²╝nΦoeë░º╧∩ùö┤┌├ß5 |╖╜_ε╘dß>▀▒∙╙┘╥í∙_┐?{·7┬~╡b╬/±?{|O╤ ¼ H?σ°÷f¬KÑLπ    ö╖┌▐µn∞Ü£║l⌐ û▀4ⁿ¥#ÇΘ7ΓƒùH∩≈⌐{O╡╪nσ?yΘSU■╡┌y╡X▒r│ΓV╡OδO┘╟σv¢╩π╟YR╕>Θv÷/φ╫[üf»<∩█√ïΘ╜±±▄O▐º■█ ░1²ΣV{_WCòó╥┬w▌ñ∙⌐∩Lⁿ▒ε╨╖┌┌■Ä=Γ╧IM┘δ≈H≡▀òU²|√Å╩÷≡ç2√╦>Γδ╛╟ë°ƒ■╢╜¼δ5√ëδò √ô¼%$ZVV≤╫≥ó4%$>'VσK(ⁿ¡┤┌▒w-_Ç+aª°éí=Zæº#?`╨α\!²²~╤Æ2`▀/S|╛╨\·>>╙∩σ₧∞u╡lÜ 5O=⌠o_C»ε)|zRYîô⌐σ ºùy54çj╡ⁿ¬╦∙∩]ƒzG*╢ì»dƒ┴┘_ª╚┐<▐╚π^┴½ô│■ΘΦ╪q▄╝²╣y/╢┌ü_╥╥Jr≈öe°1^╩≥Æâ╥jç    ╩└.2£╞gÉV₧║«µÉäù┌1xⁿîqΘ√7╡┌\╧L²£σ╨¿MCÑ╞ÿ╬ΩU╔Æ≤Æ>εú╙┴⌠╘uS╒`¿&ñMS£∩√╜p⌐πgQqº*Θ╙╨çv¡v∙ ╜⌠Ʋ°*\GΓ»²@╗R    z    u╪?■¢<    ï°Ætï8~⌠T½Xt=eY7Jn²√Ñ▓e£û■┤n┌≡oƒù>    w╣yê:Θèû'
  284. zΦ╩D|h\-UU\εåδ±}Γâ╗:1▄I0ⁿ╥╥`)fΣ~äë[    £I-z
  285. ∞Σ+ìi░0,├x»`Oü1┴V¥9ë╬─NπKë┼┴¬≤FWHô    ⌡╠▄ZF⌡G¡Wúd²ⁿéj=╧æ3┴2h-≤╥╦ƒ]╧╩∙╡ÿ9Ö┐Z5y(p&F├(¿ß1Å┌üD▄/n±î½ª╛╣ßⁿ≤ó ▀╡0hà%⌐Θh╒▌1 ü!y?╞█Iah┼%±C+èo2ÅWTX┐8¿íRτæxìxEìfQúq└±Γ*sbá{ñfÜΓë∞ü└ª╙w▄mΦª╫[?⌠{ ║π¡ÉzΣÿlôns%═¢π╪"·<¼4o S`{4H7DN└â½k¥[2┌Qà! ╬P─j^w├│╪ ╪â    ╧└╒qφ╦S`≈╦ߢx√oαφ╝ïOPK
  286. ╣Ƶ⌠├ba£#     VENDDATA.PK*ê